scrollbars.css
ASCII text, with CRLF line terminators
1::-webkit-scrollbar { 2width: 17px; 3height: 17px; 4border: 0 solid rgba(0, 0, 0, 0.1); 5background-color: rgba(255, 255, 255, 0.8); 6background-clip: padding-box; 7} 8 9::-webkit-scrollbar:horizontal { 10border-top-width: 1px; 11} 12 13::-webkit-scrollbar:vertical { 14border-left-width: 1px; 15} 16 17::-webkit-scrollbar-thumb { 18width: 32px; 19height: 32px; 20border: 4px solid transparent; 21border-radius: 8px; 22background-color: rgba(0, 0, 0, 0.48); 23background-clip: padding-box; 24} 25 26::-webkit-scrollbar-thumb:horizontal { 27border-top-width: 5px; 28border-radius: 8px 8px 8px 8px / 9px 9px 8px 8px; 29} 30 31::-webkit-scrollbar-thumb:vertical { 32border-left-width: 5px; 33border-radius: 9px 8px 8px 9px / 8px 8px 8px 8px; 34} 35 36::-webkit-scrollbar-thumb:hover { 37background-color: rgba(0, 0, 0, 0.64); 38} 39 40::-webkit-scrollbar-thumb:active { 41background-color: rgba(0, 0, 0, 0.8); 42} 43 44::-webkit-scrollbar-thumb:disabled { 45background-color: rgba(0, 0, 0, 0.192); 46} 47 48::-webkit-scrollbar-corner { 49border-top: 1px solid rgba(0, 0, 0, 0.1); 50border-left: 1px solid rgba(0, 0, 0, 0.1); 51background-color: rgba(255, 255, 255, 0.8); 52background-clip: padding-box; 53} 54